[USER (data scientist)]: Thanks! Now I wanna make sure they have at least a 6th gen Intel Core i5 or an equivalent AMD processor. Any ideas? Please generate a DataFrame and a pickle file to store a subset of 'laptops_price' dataset, specifically filtering for business laptops with certain CPU models.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import pickle

laptops_price = pd.read_csv("laptops_price.csv")

# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]
</code1>
# YOUR SOLUTION END:

print(filtered_laptops)

# save data
pickle.dump(filtered_laptops,open("./pred_result/filtered_laptops.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Sure thing! For AMD, I believe the A10-Series and A12-Series processors are pretty close to Intel's i5 6th gen and above. Let's filter the laptops based on these processor requirements: 
